home *** CD-ROM | disk | FTP | other *** search
/ Java Primer Plus / Java Primer Plus (Waite Group Proess)(1996).iso / chapter9 / kids / son.java < prev   
Text File  |  1995-12-31  |  444b  |  19 lines

  1. package kids;
  2.  
  3. import brothers.Dad;
  4.  
  5. // --- The Son Class - Son is a subclass of Dad --- //
  6.     public class Son extends Dad {
  7.     
  8.       public Son() {
  9. //        sportscar    = true; // ERROR! Dad only!
  10. //        fishing_boat = true; // ERROR! Dad and UncleFrank only!
  11.         golf_clubs   = true; // Ok, but be careful
  12.         familycar    = true; // Son can borrow
  13.         lawnmower    = true; // Yeah, sure anybody
  14.  
  15. pubprot=true;
  16.         }
  17.       }
  18.  
  19.